home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fclose.c < prev    next >
C/C++ Source or Header  |  1991-06-03  |  2KB  |  64 lines

  1. /* 
  2.  * fclose.c --
  3.  *
  4.  *    Source code for the "fclose" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fclose.c,v 1.2 91/06/03 17:40:00 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * fclose --
  26.  *
  27.  *    Flush any remaining I/O and perform stream-dependent operations
  28.  *    to close off stream.  From this point on, no further I/O should
  29.  *    be performed on stream.
  30.  *
  31.  * Results:
  32.  *    EOF is returned if there is an error condition pending for
  33.  *    the stream, or if an error occurred during the close.
  34.  *
  35.  * Side effects:
  36.  *    The stream is closed.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. fclose(stream)
  43.     FILE *stream;        /* Stream to be closed. */
  44. {
  45.     int result;
  46.  
  47.     /* 
  48.      * If stream is NULL, we will eventually get a segmentation fault. 
  49.      * This is intentional, to point out a probable bug in the calling 
  50.      * program.  One could make a case for making fclose() more 
  51.      * forgiving about NULL streams, but this way we track what the 
  52.      * BSD guys are doing.
  53.      */
  54.  
  55.     result = fflush(stream);
  56.     if (stream->closeProc == NULL) {
  57.     return result;
  58.     }
  59.     if ((*stream->closeProc)(stream) == EOF) {
  60.     return EOF;
  61.     }
  62.     return result;
  63. }
  64.